home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / vbcc / machines / amiga68k / include / setjmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-20  |  127 b   |  11 lines

  1. #ifndef __SETJMP_H
  2. #define __SETJMP_H 1
  3.  
  4. typedef int jmp_buf[13];
  5.  
  6. int setjmp (jmp_buf);
  7. void longjmp (jmp_buf, int);
  8.  
  9. #endif
  10.  
  11.